cmte
Version:
Design by Committee™ except it's just you and LLMs
23 lines (20 loc) • 556 B
text/xml
<DumpInterpolatedContentTask>
This task simply outputs the content variable for the module 'moduleA' to verify it was correctly embedded via file interpolation.
<InterpolatedContentForModulea>
<SrcModuleaJs>
```javascript
/**
* moduleA.js - A sample module for testing.
*/
export function greet(name) {
return `Hello, ${name}!`;
}
export const farewell = "Goodbye!";
const internalHelper = () => {
// Not exported
return Math.random();
};
```
</SrcModuleaJs>
</InterpolatedContentForModulea>
</DumpInterpolatedContentTask>